home *** CD-ROM | disk | FTP | other *** search
/ Aminet 52 / Aminet 52 (2002)(GTI - Schatztruhe)[!][Dec 2002].iso / Aminet / dev / gg / ncurses-5.3.lha / ncurses-5.3 / menu / m_item_opt.c < prev    next >
C/C++ Source or Header  |  2002-10-24  |  6KB  |  152 lines

  1. /****************************************************************************
  2.  * Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
  3.  *                                                                          *
  4.  * Permission is hereby granted, free of charge, to any person obtaining a  *
  5.  * copy of this software and associated documentation files (the            *
  6.  * "Software"), to deal in the Software without restriction, including      *
  7.  * without limitation the rights to use, copy, modify, merge, publish,      *
  8.  * distribute, distribute with modifications, sublicense, and/or sell       *
  9.  * copies of the Software, and to permit persons to whom the Software is    *
  10.  * furnished to do so, subject to the following conditions:                 *
  11.  *                                                                          *
  12.  * The above copyright notice and this permission notice shall be included  *
  13.  * in all copies or substantial portions of the Software.                   *
  14.  *                                                                          *
  15.  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS  *
  16.  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF               *
  17.  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.   *
  18.  * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,   *
  19.  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR    *
  20.  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR    *
  21.  * THE USE OR OTHER DEALINGS IN THE SOFTWARE.                               *
  22.  *                                                                          *
  23.  * Except as contained in this notice, the name(s) of the above copyright   *
  24.  * holders shall not be used in advertising or otherwise to promote the     *
  25.  * sale, use or other dealings in this Software without prior written       *
  26.  * authorization.                                                           *
  27.  ****************************************************************************/
  28.  
  29. /****************************************************************************
  30.  *   Author:  Juergen Pfeifer, 1995,1997                                    *
  31.  *   Contact: http://www.familiepfeifer.de/Contact.aspx?Lang=en             *
  32.  ****************************************************************************/
  33.  
  34. /***************************************************************************
  35. * Module m_item_opt                                                        *
  36. * Menus item option routines                                               *
  37. ***************************************************************************/
  38.  
  39. #include "menu.priv.h"
  40.  
  41. MODULE_ID("$Id: m_item_opt.c,v 1.12 2002/07/06 15:22:16 juergen Exp $")
  42.  
  43. /*---------------------------------------------------------------------------
  44. |   Facility      :  libnmenu  
  45. |   Function      :  int set_item_opts(ITEM *item, Item_Options opts)  
  46. |   
  47. |   Description   :  Set the options of the item. If there are relevant
  48. |                    changes, the item is connected and the menu is posted,
  49. |                    the menu will be redisplayed.
  50. |
  51. |   Return Values :  E_OK            - success
  52. |                    E_BAD_ARGUMENT  - invalid item options
  53. +--------------------------------------------------------------------------*/
  54. NCURSES_EXPORT(int)
  55. set_item_opts (ITEM *item, Item_Options opts)
  56.   opts &= ALL_ITEM_OPTS;
  57.  
  58.   if (opts & ~ALL_ITEM_OPTS)
  59.     RETURN(E_BAD_ARGUMENT);
  60.   
  61.   if (item)
  62.     {
  63.       if (item->opt != opts)
  64.     {        
  65.       MENU *menu = item->imenu;
  66.       
  67.       item->opt = opts;
  68.       
  69.       if ((!(opts & O_SELECTABLE)) && item->value)
  70.         item->value = FALSE;
  71.       
  72.       if (menu && (menu->status & _POSTED))
  73.         {
  74.           Move_And_Post_Item( menu, item );
  75.           _nc_Show_Menu(menu);
  76.         }
  77.     }
  78.     }
  79.   else
  80.     _nc_Default_Item.opt = opts;
  81.   
  82.   RETURN(E_OK);
  83. }
  84.  
  85. /*---------------------------------------------------------------------------
  86. |   Facility      :  libnmenu  
  87. |   Function      :  int item_opts_off(ITEM *item, Item_Options opts)   
  88. |   
  89. |   Description   :  Switch of the options for this item.
  90. |
  91. |   Return Values :  E_OK            - success
  92. |                    E_BAD_ARGUMENT  - invalid options
  93. +--------------------------------------------------------------------------*/
  94. NCURSES_EXPORT(int)
  95. item_opts_off (ITEM *item, Item_Options  opts)
  96.   ITEM *citem = item; /* use a copy because set_item_opts must detect
  97.                          NULL item itself to adjust its behaviour */
  98.  
  99.   if (opts & ~ALL_ITEM_OPTS)
  100.     RETURN(E_BAD_ARGUMENT);
  101.   else
  102.     {
  103.       Normalize_Item(citem);    
  104.       opts = citem->opt & ~(opts & ALL_ITEM_OPTS);
  105.       return set_item_opts( item, opts );
  106.     }
  107. }
  108.  
  109. /*---------------------------------------------------------------------------
  110. |   Facility      :  libnmenu  
  111. |   Function      :  int item_opts_on(ITEM *item, Item_Options opts)   
  112. |   
  113. |   Description   :  Switch on the options for this item.
  114. |
  115. |   Return Values :  E_OK            - success
  116. |                    E_BAD_ARGUMENT  - invalid options
  117. +--------------------------------------------------------------------------*/
  118. NCURSES_EXPORT(int)
  119. item_opts_on (ITEM *item, Item_Options opts)
  120. {
  121.   ITEM *citem = item; /* use a copy because set_item_opts must detect
  122.                          NULL item itself to adjust its behaviour */
  123.   
  124.   opts &= ALL_ITEM_OPTS;
  125.   if (opts & ~ALL_ITEM_OPTS)
  126.     RETURN(E_BAD_ARGUMENT);
  127.   else
  128.     {
  129.       Normalize_Item(citem);
  130.       opts = citem->opt | opts;
  131.       return set_item_opts( item, opts );
  132.     }
  133. }
  134.  
  135. /*---------------------------------------------------------------------------
  136. |   Facility      :  libnmenu  
  137. |   Function      :  Item_Options item_opts(const ITEM *item)   
  138. |   
  139. |   Description   :  Switch of the options for this item.
  140. |
  141. |   Return Values :  Items options
  142. +--------------------------------------------------------------------------*/
  143. NCURSES_EXPORT(Item_Options)
  144. item_opts (const ITEM * item)
  145. {
  146.   return (ALL_ITEM_OPTS & Normalize_Item(item)->opt);
  147. }
  148.  
  149. /* m_item_opt.c ends here */
  150.